home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha Extra 2004 January / CyberMycha Extra 1-2004 (Poland) (Disc 2).bin / Pippi / gmsl.dir / Internal_57_scoreInternalWalk.ls < prev    next >
Encoding:
Text File  |  2001-09-04  |  295 b   |  17 lines

  1. property cursorPos
  2. global gmObject, sndObject
  3.  
  4. on beginSprite me
  5.   cursorPos = the mouseLoc
  6.   gmObject.traceCursor(cursorPos)
  7. end
  8.  
  9. on exitFrame me
  10.   if the mouseLoc <> cursorPos then
  11.     cursorPos = the mouseLoc
  12.     gmObject.traceCursor(cursorPos)
  13.   end if
  14.   gmObject.walk()
  15.   go(the frame)
  16. end
  17.